home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / dos / c / tcclib.exe / ISEGA.C < prev    next >
Encoding:
C/C++ Source or Header  |  1990-01-31  |  218 b   |  18 lines

  1. #include <dos.h>
  2.  
  3. int IsEGA()
  4. {
  5.     union REGS reg;
  6.  
  7.     reg.x.ax = 0x1200;
  8.     reg.x.bx = 0x0010;
  9.     reg.x.cx = 0xffff;
  10.  
  11.     int86( 0x10, ®, ® );
  12.  
  13.     if ( reg.x.cx == 0xffff )
  14.         return(0);
  15.     else
  16.         return(1);
  17. }
  18.